home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 07-06.BAS < prev    next >
BASIC Source File  |  1991-06-06  |  411b  |  29 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 16
  7.  
  8. FGsetcolor 14
  9. FGtext "yellow", 6
  10.  
  11. FGsetcolor 10
  12. FGtext " green", 6
  13.  
  14. FGsetcolor 7
  15. MinX = FGxconvert(0)
  16. MaxX = FGxconvert(16) - 1
  17. MinY = FGyconvert(24)
  18. MaxY = FGyconvert(25) - 1
  19. FGrect MinX, MaxX, MinY, MaxY
  20. FGsetcolor 12
  21. FGlocate 24, 0
  22. FGtext " Press any key. ", 16
  23. FGwaitkey
  24.  
  25. FGsetmode OldMode
  26. FGreset
  27.  
  28. END
  29.